home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / REALITY / distort / Makefile < prev    next >
Makefile  |  1994-08-01  |  814b  |  33 lines

  1. #!smake
  2. # This makefile creates the distort demo and installs it into /usr/moredemos
  3. #
  4. include ${ROOT}/usr/include/make/commondefs
  5. # Libraries to link with to get the GL (-lsun is necessary for correct
  6. # remote graphics operation when running NIS).
  7.  
  8. TARGETS = distort
  9. LLDLIBS = -limage -lgutil -lgl -lm
  10. SHDLIBC = -lmpc
  11.  
  12. CFILES = distort.c imagedata.c ripple.c rubber.c  
  13. OTHERSOURCE = ripple_precalc.c  distort.rgb.uu
  14. HFILES = defs.h imagedata.h ripple.h rubber.h
  15. LDIRT = ripple_precalc ripple_table.c
  16. OPTIMIZER = -O2
  17. CVERSION = -ansi
  18.  
  19. default all: ${TARGETS}
  20.  
  21. include ${COMMONRULES}
  22.  
  23. ${TARGETS}: ${OBJECTS} ripple_table.o 
  24.     ${CCF} -o $@ ${OBJECTS} ripple_table.o ${LDFLAGS}
  25.  
  26. ripple_table.c: ripple_precalc
  27.     ./ripple_precalc > ripple_table.c
  28.  
  29. ripple_precalc: ripple_precalc.c
  30.     ${CC} -o $@ ripple_precalc.c -lm
  31.  
  32.